home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Columbia Kermit
/
kermit.zip
/
newsgroups
/
misc.20041116-20060924
/
000112_hkdevel@gmail.com_Mon Jun 6 11:11:59 2005.msg
< prev
next >
Wrap
Internet Message Format
|
2020-01-01
|
2KB
Path: newsmaster.cc.columbia.edu!newsfeed.nyu.edu!newsfeed.news.ucla.edu!newsfeed.media.kyoto-u.ac.jp!newsfeed.icl.net!newsfeed.fjserv.net!newspump.monmouth.com!newspeer.monmouth.com!nntp.abs.net!news.maxwell.syr.edu!postnews.google.com!g14g2000cwa.googlegroups.com!not-for-mail
From: hkdevel@gmail.com
Newsgroups: comp.protocols.kermit.misc
Subject: Re: convert lf -> lf/cr
Date: 5 Jun 2005 10:28:37 -0700
Organization: http://groups.google.com
Lines: 20
Message-ID: <1117992517.013684.143350@g14g2000cwa.googlegroups.com>
References: <1117818075.712279.116900@o13g2000cwo.googlegroups.com>
<slrnda1j7o.2nu.fdc@sesame.cc.columbia.edu>
NNTP-Posting-Host: 153.5.34.23
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
X-Trace: posting.google.com 1117992522 21009 127.0.0.1 (5 Jun 2005 17:28:42 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Sun, 5 Jun 2005 17:28:42 +0000 (UTC)
In-Reply-To: <slrnda1j7o.2nu.fdc@sesame.cc.columbia.edu>
User-Agent: G2/0.2
Complaints-To: groups-abuse@google.com
Injection-Info: g14g2000cwa.googlegroups.com; posting-host=153.5.34.23;
posting-account=PMx-WA0AAAANDuyYjZmKt8IdDwqAHmgG
Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15351
> Just stuff a CR before passing on the LF:
>
> if (c == LF && tt_crd) { /* SET TERM CR-DISPLA CRLF? */
> ckcputc(CR); /* Yes, output CR first */
> if (seslog && !sessft) logchar((char)CR);
> }
>
> bearing in mind that then you will have a hacked version in which SET TERM
> CR-DISPLAY really means SET TERM LF-DISPLAY. When the next release (or daily
> edit) appears, it will have the new command and you can throw your version out
> and use the new one.
>
Thank you for this quick&dirty hack help. It does just what I wanted!
regards,
hk